This web method returns a list of available activity types (TypeId) setup in the system, the ids returned by this web method are used in other web services such as CreateActivityForNewServiceUser and CreateActivityForExistingServiceUser.
Method | /ProCloudWS.asmx/ActivityTypesGet |
The request body is of type ActivityTypesGet.
Name | Description | Data Type |
---|---|---|
objProviderGUId | This is a unique provider id, which can be obtained from CSS GUId | guid |
strPassword | This is your unique service password which can be obtained from CSS String (min 1 max 50)
| xml:string |
|
The response body is of type ActivityTypesGetResponse.
Name | Description | Data Type |
---|---|---|
ActivityTypesGetResult | objActivityTypesGetReturn |
|
<?xml version="1.0" encoding="utf-8"?> <objActivityTypesGetReturn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://pro-cloud.org/"> <intErrorId>0</intErrorId> <strErrorMsg /> <xmlDataSet> <NewDataSet xmlns=""> <ActivityTypesGet> <TypeId>15</TypeId> <TypeDesc>Hire Delivery</TypeDesc> </ActivityTypesGet> <ActivityTypesGet> <TypeId>16</TypeId> <TypeDesc>Hire Collection</TypeDesc> </ActivityTypesGet> </NewDataSet> </xmlDataSet> </objActivityTypesGetReturn>